home *** CD-ROM | disk | FTP | other *** search
/ PC Media 7 / PC MEDIA CD07.iso / share / uwin / cassette / appdefs.h next >
Encoding:
C/C++ Source or Header  |  1994-06-28  |  915 b   |  27 lines

  1. // Copyright (c) 1994, William Wagner
  2. // All Rights reserved.
  3. //
  4. // This source is a portion of a shareware program.  It may be distributed
  5. // only in its entirety.  The copyright statements must be included with any 
  6. // reproduction of this source.
  7. // 
  8.  
  9. #ifndef __APPDEFS_H__
  10. #define __APPDEFS_H__
  11. // This file exists for compiler speed.  I give a forward declaration for 
  12. // all classes here.  This file is included in stdafx.h.  This means that 
  13. // all files know the names of the classes, but not necessarily their
  14. // full definitions.  So... this avoids many strange compiler include
  15. // entanglements. 
  16.  
  17. // There is an interesting side-note related to the debugger.  
  18. //For some reason, if this gets included, the debugger can't find
  19. // the data member inside these classes
  20. // hmm...
  21. class CCassetteApp;
  22. class CMainFrame;
  23. class CCassetteDoc;
  24. class CTapeView;
  25. class CPrintView;
  26. #endif
  27.